home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1990: Discy Business / Discy Business.2mg / DEV.CD / TOOLS / CLIBS / LIBRARIES / CINCLUDE / MATH.H < prev    next >
Encoding:
C/C++ Source or Header  |  1988-08-01  |  451 b   |  24 lines  |  [B0] Apple IIgs Source Code (0x000A)

  1. /*
  2.         math.h - math supplement to SANE
  3.  
  4.         Copyright Apple Computer, Inc. 1985
  5.         All rights reserved.
  6. */
  7.  
  8. #ifndef __MATH__
  9. #define __MATH__
  10.  
  11. #ifndef __SANE__
  12. #include <sane.h>
  13. #endif
  14. extended atof(),frexp(),ldexp(),modf();
  15. #define log10(x) (log(x)/log(10.0))
  16. #define pow(x,y) power(x,y)
  17. extended floor(),ceil(),fmod();
  18. extended hypot();
  19. extended sinh(),cosh(),tanh();
  20. extended asin(),acos(),atan2();
  21. char *ecvt();
  22. char *fcvt();
  23. #endif
  24.